:root {
    --bg-dark: #0b0b0b;
    --accent: #f5c16c;
    --text-muted: #b5b5b5;
  }
  
  body {
    padding-top: 72px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  }
  
  .navbar {
    padding: 1rem 0;
  }
  
  .btn-accent {
    background: var(--accent);
    color: #000;
    font-weight: 600;
    border-radius: 30px;
    padding: 0.6rem 1.5rem;
  }
  


  .hero-video {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
  }
  
  .hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
  }
  
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 2;
  }
  
  .hero-video .container {
    z-index: 3;
  }

  .hero-content {
    max-width: 720px;
  }
  
  .hero-content h1 {
    font-size: clamp(3.5rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.75);
  }
  
  .hero-content p {
    margin-top: 1.25rem;
    font-size: 1.25rem;
    color: #d1d5db;
    max-width: 560px;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.6);
  }
  
  
  
  .hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
  }
  
  .hero p {
    max-width: 600px;
    margin: 1rem auto 2rem;
    color: var(--text-muted);
  }
  
  .stats h2 {
    font-weight: 700;
  }
  
  .stats span {
    color: var(--text-muted);
  }
  
  .section-title {
    text-align: center;
    font-weight: 700;
  }


  .icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
  }




  .team-section {
    background-color: #f8f9fa;
  }
  
  .team-card {
    text-align: center;
    background: #ffffff;
    padding: 15px;
    transition: all 0.3s ease;
  }
  
  .team-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 0; /* No rounded images */
    margin-bottom: 15px;
  }
  
  .team-card h5,
  .team-card h6 {
    font-weight: 600;
    margin-bottom: 5px;
  }
  
  .team-card span {
    font-size: 14px;
    color: #6c757d;
  }
  
  /* Hover effect */
  .team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  }



  .contact-info {
    background-color: #f8f9fa;
  }
  
  .contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
  }
  
  .contact-detail {
    margin-bottom: 20px;
  }
  
  .contact-label {
    font-weight: 600;
    color: #007bff;  /* Accent color for labels */
    margin-bottom: 5px;
  }
  
  .contact-detail p {
    font-size: 1rem;
    color: #555;
  }
  
  .contact-detail a {
    color: #007bff; /* Link color */
    text-decoration: none;
  }
  
  .contact-detail a:hover {
    text-decoration: underline;
  }
  
  .contact-image img {
    width: 100%;
    margin-top: 30px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
  }
  
  /* Form Styling */
  form .form-control {
    border-radius: 5px;
    padding: 10px;
  }
  
  form .form-label {
    font-weight: 600;
    color: #333;
  }
  
  form button {
    font-weight: 600;
    padding: 12px;
  }
  
  form button:hover {
    background-color: #0056b3;
    border-color: #0056b3;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .contact-info h2 {
      font-size: 2rem;
    }
    
    .contact-detail p {
      font-size: 0.9rem;
    }
    
    .contact-image img {
      margin-top: 20px;
    }
  }
  
  


  .contact-section {
    position: relative;
    height: 300px;
    background-image: url('/static/client/images/con1.jpeg'); /* Replace with your image */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
  }
  
  .contact-section h2 {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 2;
  }
  
  /* Overlay for better text visibility */
  .contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 75, 239, 0.8);
    z-index: 1;
  }
  
  /* Wave animation */
  .wave-container {
    position: absolute;
    bottom: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
  }
  
  .wave {
    position: relative;
    display: block;
    width: 200%;
    height: 100px;
    animation: waveMove 8s linear infinite;
  }
  







  .contact-info {
    background-color: #f8f9fa;
  }
  
  .contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
  }
  
  .contact-detail {
    margin-bottom: 20px;
  }
  
  .contact-label {
    font-weight: 600;
    color: #000;  
    margin-bottom: 5px;
    display: flex;
    align-items: center;
  }
  
  .contact-label i {
    margin-right: 10px; /* Space between icon and text */
  }
  
  .contact-detail p {
    font-size: 1rem;
    color: #555;
  }
  
  .contact-detail a {
    color: #000;
    text-decoration: none;
  }
  
  .contact-detail a:hover {
    text-decoration: underline;
  }
  
  .contact-image img {
    width: 100%;
    margin-top: 30px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
  }
  
  /* Form Styling */
  form .form-control {
    border-radius: 5px;
    padding: 10px;
  }
  
  form .form-label {
    font-weight: 600;
    color: #333;
  }
  
  form button {
    font-weight: 600;
    padding: 12px;
  }
  
  form button:hover {
    background-color: #0056b3;
    border-color: #0056b3;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .contact-info h2 {
      font-size: 2rem;
    }
    
    .contact-detail p {
      font-size: 0.9rem;
    }
    
    .contact-image img {
      margin-top: 20px;
    }
  }

  


  .privacy-policy {
    background-color: #f8f9fa;  /* Light background */
    padding: 50px 0;
  }
  
  .privacy-policy h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
  }
  
  .privacy-policy h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-top: 40px;
    margin-bottom: 20px;
  }
  
  .privacy-policy p {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 20px;
  }
  
  @media (max-width: 768px) {
    .privacy-policy h2 {
      font-size: 2rem;
    }
  
    .privacy-policy h3 {
      font-size: 1.75rem;
    }
  
    .privacy-policy p {
      font-size: 1rem;
    }
  }

  

  


  .why-this-fund {
    background-color: #f8f9fa;  /* Light background */
    padding: 50px 0;
  }
  
  .why-this-fund h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
  }
  
  .why-this-fund p {
    font-size: 1.25rem;
    color: #555;
  }
  
  .why-this-fund .btn {
    margin-top: 20px;
    font-size: 1.125rem;
  }
  
  .image-container img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .why-this-fund h2 {
      font-size: 2rem;
    }
  
    .why-this-fund p {
      font-size: 1rem;
    }
  
    .image-container img {
      height: auto;
    }
  }

  




  .faq {
    background-color: #f8f9fa;  /* Light background */
    padding: 50px 0;
  }
  
  .faq h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
  }
  
  .accordion-button {
    font-size: 1.125rem;
    font-weight: 600;
    color: #007bff;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    transition: background-color 0.3s ease;
  }
  
  .accordion-button:not(.collapsed) {
    background-color: #007bff;
    color: white;
  }
  
  .accordion-button:hover {
    background-color: #e9ecef;
  }
  
  .accordion-body {
    font-size: 1rem;
    color: #555;
  }
  
  @media (max-width: 768px) {
    .faq h2 {
      font-size: 2rem;
    }
  }
  



  .map-section {
    background-color: #f8f9fa;  /* Light background */
    padding: 50px 0;
  }
  
  .map-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
  }
  
  .map-container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .map-container iframe {
    width: 100%;
    height: 350px;  /* Reduced height */
    border: none;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
  }
  
  @media (max-width: 768px) {
    .map-section h2 {
      font-size: 2rem;
    }
  
    .map-container iframe {
      height: 250px;  /* Further reduce height on smaller screens */
    }
  }





  .what-is-it {
    padding: 50px 0;
    color: white;
  }
  
  .what-is-it h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .what-is-it p {
    /* font-size: 0.5rem; */
    
    color: #fff;
  }
  
  .icon-box {
    margin-bottom: 20px;
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    transition: background-color 0.3s ease;
  }
  
  .icon-box i {
    color: #007bff; /* Icon color */
  }
  
  .icon-box p {
    margin-top: 10px;
    color: #fff;
    font-weight: 600;
  }
  
  .icon-box:hover {
    background-color: rgba(0, 0, 0, 0.6); /* Darker background on hover */
  }
  
  .image-container img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
  }
  
  @media (max-width: 768px) {
    .what-is-it h2 {
      font-size: 2rem;
    }
  
    .what-is-it p {
      font-size: 1rem;
    }
  
    .icon-box {
      margin-bottom: 15px;
      padding: 12px;
    }
  
    .image-container img {
      height: auto;
    }
  }
  




  .real-estate-bitcoin {
  background-color: #f8f9fa;  /* Light background */
  padding: 50px 0;
}

.real-estate-bitcoin h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.real-estate-bitcoin p {
  font-size: 1.25rem;
  color: #555;
}

.image-container img {
  width: 100%;
  border-radius: 10px;  /* Rounded corners */
  box-shadow: 0px 4px 10px rgba(0,0,0,0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
  .real-estate-bitcoin h2 {
    font-size: 2rem;
  }

  .real-estate-bitcoin p {
    font-size: 1rem;
  }

  .image-container img {
    height: auto;  /* Ensures the image scales well on mobile */
  }
}

  
  
  
  


  .executive-card {
    height: 500px;
    max-width: 350px;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    transition: all 0.35s ease;
  }
  
  /* Image */
  .executive-card img {
    width: 100%;
    height: 65%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  /* Body */
  .executive-card .card-body {
    height: 35%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem;
  }
  
  .executive-card h4 {
    font-weight: 600;
    margin-bottom: 6px;
    letter-spacing: 0.2px;
  }
  
  .executive-card p {
    font-size: 15px;
    color: #6c757d;
    margin: 0;
  }
  
  /* Hover effects */
  .executive-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
  }
  
  .executive-card:hover img {
    transform: scale(1.05);
  }
  
  /* Mobile adjustments */
  @media (max-width: 768px) {
    .executive-card {
      height: 450px;
    }
  
    .executive-card img {
      height: 60%;
    }
  }
  
  



  .message-section {
    background-image: url("/static/client/images/footer_cc.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
  }
  
  /* Optional dark overlay for readability */
  .message-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
  }
  
  .message-section > .container {
    position: relative;
    z-index: 1;
  }





  .featured-section {
    overflow: hidden;
  }
  
  .logo-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  
  .logo-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: scroll-left 30s linear infinite;
  }
  
  .logo-track img {
    margin: 0 40px;
    max-height: 80px;
    width: auto;
    opacity: 0.85;
    transition: opacity 0.3s ease;
  }
  
  .logo-track img:hover {
    opacity: 1;
  }
  
  @keyframes scroll-left {
    from {
      transform: translateX(-50%);
    }
    to {
      transform: translateX(0);
    }
  }





  .reviews-marquee {
    width: 100%;
    overflow: hidden;
  }
  
  .reviews-track {
    display: flex;
    width: max-content;
    animation: scrollReviews 40s linear infinite;
  }
  
  .review-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    margin: 0 15px;
    width: 300px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    flex-shrink: 0;
  }
  
  .review-card img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 10px;
  }
  
  .review-card h6 {
    margin-bottom: 2px;
  }
  
  .review-card small {
    color: #777;
  }
  
  .stars {
    color: #fbbc04;
    margin: 8px 0;
  }
  
  @keyframes scrollReviews {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-50%);
    }
  }

  




  .investment-card {
    height: 500px; /* taller card */
    cursor: pointer;
  }
  
  .investment-card .card-img {
    height: fit-content;
    object-fit: cover;
  }
  
  .card-content {
    /* content spans full height, spacing between top button and bottom text */
  }
  
  @media (max-width: 768px) {
    .investment-card {
      height: 350px;
    }
  }



  .ira-icon {
    font-size: 2.2rem;
  }
  
  .ira-card p,
  .ira-step-card p {
    font-size: 1.05rem;
  }
  
  .ira-step-card {
    position: relative;
  }
  
  .step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #dc3545;
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.75rem;
  }
  
  



  .rounded-feature {
    background-image: url("/static/client/images/newg2.jpeg");
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    min-height: 520px;           /* Not full screen */
    max-width: 1500px;
    margin: 0 auto;              /* Center horizontally */
    position: relative;
    overflow: hidden;
  }
  
  /* Dark overlay for readability */
  .rounded-feature::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    border-radius: 24px;
  }
  
  /* Content layer */
  .rounded-feature .content {
    position: relative;
    z-index: 2;
    max-width: 600px;
  }


  .feature-split {
    position: relative; /* allows overlaying elements */
    background: url('/static/client/images/footer_cc.jpeg') 
                center/cover no-repeat;
    padding: 5rem 1rem;
    color: #fff; /* ensures text is readable */
    z-index: 1;
    overflow: hidden;
  }
  
  /* Optional: overlay for better text readability */
  .feature-split::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.0); /* dark overlay */
    z-index: 1;
  }
  
  /* Make sure the content sits above the overlay */
  .feature-split .container {
    position: relative;
    z-index: 2;
  }
  

  
  .fund-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform .3s ease;
  }
  
  .fund-card:hover {
    transform: translateY(-6px);
  }
  
  .fund-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }
  
  .cta {
    background: #111;
    padding: 5rem 1rem;
  }

  /* Quadrant Metric Grid */
  .metric-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid rgba(255,255,255,0.12);
    max-width: 420px;       /* 👈 makes the whole block smaller */
    margin-left: auto;      /* 👈 keeps it visually secondary */
  }
  
  .metric-cell {
    padding: 1.75rem 1.5rem; /* 👈 tighter spacing */
    border-right: 1px solid rgba(255,255,255,0.12);
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }
  
  .metric-cell:nth-child(2n) {
    border-right: none;
  }
  
  .metric-cell:nth-last-child(-n + 2) {
    border-bottom: none;
  }
  
  .metric-value {
    font-size: clamp(1.6rem, 3vw, 2.2rem); /* 👈 smaller numbers */
    font-weight: 700;
    color: var(--accent);
    line-height: 1.1;
  }
  
  .metric-label {
    margin-top: 0.35rem;
    font-size: 0.75rem;     /* 👈 subtler labels */
    color: #b5b5b5;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }
  
  
  .track-record h2 {
    font-size: clamp(2.8rem, 5.5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
  }
/* Dark blue feature section */
/* .feature-split {
    background: #0b1c2d;
    padding: 5rem 1rem;
  } */
  
  .text-light-muted {
    color: #c9d4e0;
  }
  .footer-text {
    /* max-height: 180px;
    overflow-y: auto; */
    font-size: 0.85rem;
    line-height: 1.4;
  }
  .feature-list {
    list-style: none;
    padding: 0;
  }
  
  .feature-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
  }
  
  .feature-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
  }
  
  /* Footer */
  .footer-links {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
  }
  
  .footer-links li {
    margin-bottom: 0.5rem;
  }
  
  .footer-links a {
    color: #b5b5b5;
    text-decoration: none;
  }
  
  .footer-links a:hover {
    color: #fff;
  }

  .footer-bg {
    position: relative;
    background:
      linear-gradient(rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0)),
      url('/static/client/images/footer_cc.jpeg')
      center / cover no-repeat;
  }
  
  .footer-text {
    max-width: 420px;
    line-height: 1.6;
  }
    

  @media (max-width: 575px) {
    .metric-grid {
      grid-template-columns: 1fr;
    }
  
    .metric-cell {
      border-right: none !important;
    }
  
    .metric-cell:not(:last-child) {
      border-bottom: 1px solid rgba(255,255,255,0.15);
    }
  }





  /* ============================
   GLOBAL MOBILE FIXES
============================ */

@media (max-width: 991px) {
  body {
    padding-top: 64px;
  }
}

/* ============================
   HERO MOBILE FIX
============================ */

@media (max-width: 768px) {

  .hero-video {
    min-height: 90vh;
  }

  .hero-video-bg {
    height: 100%;
    width: auto;
  }

  .hero-content {
    max-width: 100%;
    padding: 0 1rem;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.1rem;
    line-height: 1.25;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-content .btn {
    width: 100%;
    max-width: 320px;
    margin: 1.25rem auto 0;
  }
}

/* ============================
   FEATURE SPLIT FIX
============================ */

@media (max-width: 768px) {

  .feature-split {
    padding: 3rem 1rem;
    text-align: center;
  }

  .feature-split img {
    margin-bottom: 2rem;
  }

  .feature-list li {
    padding-left: 0;
  }

  .feature-list li::before {
    display: none;
  }
}

/* ============================
   TRACK RECORD FIX
============================ */

@media (max-width: 768px) {

  .track-record h2 {
    font-size: 2.2rem;
    text-align: center;
  }

  .track-text {
    font-size: 1rem;
    text-align: center;
  }

  .metric-grid {
    max-width: 100%;
    margin: 2rem auto 0;
  }
}

/* ============================
   METRIC GRID SMALL SCREENS
============================ */

@media (max-width: 575px) {

  .metric-value {
    font-size: 1.5rem;
  }

  .metric-label {
    font-size: 0.7rem;
  }
}

/* ============================
   IMAGE SECTIONS
============================ */

@media (max-width: 768px) {

  .image-section-img,
  .image-container img {
    border-radius: 14px;
  }
}

/* ============================
   GENERAL TEXT SCALE FIX
============================ */

@media (max-width: 576px) {

  h2 {
    font-size: 1.8rem !important;
  }

  p {
    font-size: 0.95rem;
  }
}

  